Skip to main content

All Questions

10votes
1answer
12kviews

Use selenium with C

I can't find any information on if you can use selenium with C. Just C, not c#. Does anyone know if this is possible? I tried searching on Google but all results that appear has "C#" in it and not "C"...
tablec1's user avatar
1vote
0answers
113views

Use execv & ptrace to execute a selenium-webdriver python program in linux

I wrote a C program below which used execv to run a shell command and ptrace to trace it. pid = fork(); if (pid == 0) { // child process ptrace(PTRACE_TRACEME, 0, NULL, NULL); ...
ycdfwzy's user avatar
1vote
0answers
64views

PhantomJS "not available in path" when called through Fitnesse (CSlim) with Python API

I'm trying to create some automated tests using a combination of Selenium and Fitnesse on a Linux machine. I am using the Python bindings of Selenium and CSlim as a wrapper for Fitnesse. Previously I ...
SameAsMuli's user avatar
0votes
0answers
142views

How to compile Selenium on Debian Jessie, failing on ibus

When I compile Selenium on Debian Jessie, it gives me the output below. I have ibus lib installed. I think the version I use is different. How can I solve it? If you need to provide any environment ...
mvorisek's user avatar
-1votes
1answer
294views

selenium locate no id or name 's elements using javascript

I always locate element by getElementId, and sent value by using document.getElementId(id).value = "something". but I found an button without Id or Name < input type="submit" class="button" ...
Edison's user avatar

close